home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The PC-SIG Library 10
/
The PC-Sig Library - Shareware for the IBM PC and Compatibles (PC-SIG)(Tenth Edition Disks 1-2804)(1991).iso
/
PC_SIGCD
/
08
/
9
/
DISK0895.ZIP
/
USER.SRC
< prev
next >
Wrap
Text File
|
1987-04-07
|
2KB
|
124 lines
' USER-Defined Menu Version 1.00
' SIMS (c) David Thomas Stewart 1984-1987
' Distributed by Synergy Development - THIS PROGRAM IS PUBLIC DOMAIN
screen(n)
normal
foreground(white+)
background(red)
setdate
settime
date(2,9)
time(65,9)
pass(25,20)
foreground(white+)
background(blue)
setpass
normal
foreground(green)
setattr
box(0,0)-(79,24),"║"
fill(1,0),"═",78
fill(1,24),"═",78
fill(1,8),"─",78
fill(1,10),"─",78
.(0,0)"╔"
.(0,24)"╚"
.(79,0)"╗"
.(79,24)"╝"
.(0,8)"╟"
.(79,8)"╢"
.(0,10)"╟"
.(79,10)"╢"
foreground(white+)
background(blue)
setattr
.(30,9)" USER Menu Version 1.00 "
normal
foreground(yellow)
setattr
.(25,2)"█▒ █▒ ██████▒ ██████▒ █████▒"
.(25,3)"█▒ █▒ █▒ █▒ █▒ █▒"
.(25,4)"█▒ █▒ ██████▒ ██████▒ █████▒"
.(25,5)"█▒ █▒ █▒ █▒ █▒ ██▒"
.(25,6)"██████▒ ██████▒ ██████▒ █▒ █▒"
option start
option(F1,11,12)" F1 - Your option one ","NULL"
option(F3,11,13)" F3 - Your option two ","NULL"
option(F5,11,14)" F5 - Your option three ","NULL"
option(F7,11,15)" F7 - Your option four ","NULL"
option(F9,11,16)" F9 - Your option five ","NULL"
option(F2,44,12)" F2 - Your option six ","NULL"
option(F4,44,13)" F4 - Your option seven ","NULL"
option(F6,44,14)" F6 - Your option eight ","NULL"
option(F8,44,15)" F8 - Your option nine ","NULL"
option(F10,44,16)" F10 - Return to DEMO Menu ","MENU DEMO"
option end
border(grey)
normal
foreground(cyan)
setattr
proc(F1,select)
fill(1,18)," ",78
.(18,18)"This is your option one - F1"
proc end
proc(F3,select)
fill(1,18)," ",78
.(18,18)"This is your option two - F3"
proc end
proc(F5,select)
fill(1,18)," ",78
.(18,18)"This is your option three - F5"
proc end
proc(F7,select)
fill(1,18)," ",78
.(18,18)"This is your option four - F7"
proc end
proc(F9,select)
fill(1,18)," ",78
.(18,18)"This is your option five - F9"
proc end
proc(F2,select)
fill(1,18)," ",78
.(18,18)"This is your option six - F2"
proc end
proc(F4,select)
fill(1,18)," ",78
.(18,18)"This is your option seven - F4"
proc end
proc(F6,select)
fill(1,18)," ",78
.(18,18)"This is your option eight - F6"
proc end
proc(F8,select)
fill(1,18)," ",78
.(18,18)"This is your option ten - F8"
proc end
proc(F10,select)
fill(1,18)," ",78
.(18,18)"This is option ten - F10 - Return to DEMO Menu"
proc end
end